fullcalendar.default-settings.js ➔ ... ➔ ???   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
$(function () {
2
    $('#calendar-holder').fullCalendar({
3
        header: {
4
            left: 'prev, next',
5
            center: 'title',
6
            right: 'month, basicWeek, basicDay,'
7
        },
8
        lazyFetching: true,
9
        timeFormat: {
10
            agenda: 'h:mmt',
11
            '': 'h:mmt'
12
        },
13
        eventSources: [
14
            {
15
                url: '/full-calendar/load',
16
                type: 'POST',
17
                data: {},
18
                error: () => {}
19
            }
20
        ]
21
    });
22
});
23